home *** CD-ROM | disk | FTP | other *** search
- /*
- ==========================================================================
- Module: AFStrSVE.js
- ==========================================================================
- JavaScript language dependent strings.
- ==========================================================================
- The Software, including this file, is subject to the End User License
- Agreement.
- Copyright (c) 1998, Adobe Systems Incorporated, All Rights Reserved.
- ==========================================================================
- */
-
- /* ==== Strings ==== */
- /* All of our user strings are defined here. Use Shift-JIS encoding for
- ** double byte platforms. These strings need to be translated for each language. */
-
- if (app.language == "SVE") {
- /* Each string is presented twice: first, in Macintosh platform encoding,
- ** and then in Windows encoding: */
- if (app.platform == "MAC") {
- IDS_LANGUAGE = "SVE";
- IDS_GREATER_THAN = "Ogiltigt vèrde: mîste vara stÜrre èn eller lika med %s.";
- IDS_GT_AND_LT = "Ogiltigt vèrde: mîste vara stÜrre èn eller lika med %s och mindre èn eller lika med %s.";
- IDS_LESS_THAN = "Ogiltigt vèrde: mîste vara mindre èn eller lika med %s.";
- IDS_INVALID_MONTH = "** Ogiltigt **";
- IDS_INVALID_DATE = "Ogiltig datum/tid: se till att datumet/tiden existerar och att alla fyra siffror fÜr îr angivits."
- IDS_INVALID_VALUE = "Det angivna vΣrdet stΣmmer inte med fΣltets format";
- IDS_AM = "fm";
- IDS_PM = "em";
-
- /* This string contains month info in the following format:
- ** month name or abbreviation (left bracket) month number (right bracket)
- ** Note that the first string with the given number will be returned by
- ** AFGetMonthString (look in AForm.js)
- ** Also note that the months and abbreviations should be in order of most
- ** to least definitive in case an abbreviation matches part of another
- ** month or abbreviation */
- IDS_MONTH_INFO = "Januari[1]" +
- "Februari[2]" +
- "Mars[3]" +
- "April[4]" +
- "Maj[5]" +
- "Juni[6]" +
- "Juli[7]" +
- "Augusti[8]" +
- "September[9]" +
- "Oktober[10]" +
- "November[11]" +
- "December[12]" +
- "Sept[9]" +
- "Jan[1]" +
- "Feb[2]" +
- "Mar[3]" +
- "Apr[4]" +
- "Jun[6]" +
- "Jul[7]" +
- "Aug[8]" +
- "Sep[9]" +
- "Okt[10]" +
- "Nov[11]" +
- "Dec[12]" +
- "January[1]" +
- "February[2]" +
- "March[3]" +
- "May[5]" +
- "June[6]" +
- "July[7]" +
- "August[8]" +
- "October[10]" +
- "Oct[10]";
- } else {
- IDS_LANGUAGE = "SVE";
- IDS_GREATER_THAN = "Ogiltigt vΣrde: mσste vara st÷rre Σn eller lika med %s.";
- IDS_GT_AND_LT = "Ogiltigt vΣrde: mσste vara st÷rre Σn eller lika med %s och mindre Σn eller lika med %s.";
- IDS_LESS_THAN = "Ogiltigt vΣrde: mσste vara mindre Σn eller lika med %s.";
- IDS_INVALID_MONTH = "** Ogiltigt **";
- IDS_INVALID_DATE = "Ogiltig datum/tid: se till att datumet/tiden existerar och att alla fyra siffror f÷r σr angivits."
- IDS_INVALID_VALUE = "Det angivna vΣrdet stΣmmer inte med fΣltets format";
- IDS_AM = "fm";
- IDS_PM = "em";
-
- /* This string contains month info in the following format:
- ** month name or abbreviation (left bracket) month number (right bracket)
- ** Note that the first string with the given number will be returned by
- ** AFGetMonthString (look in AForm.js)
- ** Also note that the months and abbreviations should be in order of most
- ** to least definitive in case an abbreviation matches part of another
- ** month or abbreviation */
- IDS_MONTH_INFO = "Januari[1]" +
- "Februari[2]" +
- "Mars[3]" +
- "April[4]" +
- "Maj[5]" +
- "Juni[6]" +
- "Juli[7]" +
- "Augusti[8]" +
- "September[9]" +
- "Oktober[10]" +
- "November[11]" +
- "December[12]" +
- "Sept[9]" +
- "Jan[1]" +
- "Feb[2]" +
- "Mar[3]" +
- "Apr[4]" +
- "Jun[6]" +
- "Jul[7]" +
- "Aug[8]" +
- "Sep[9]" +
- "Okt[10]" +
- "Nov[11]" +
- "Dec[12]" +
- "January[1]" +
- "February[2]" +
- "March[3]" +
- "May[5]" +
- "June[6]" +
- "July[7]" +
- "August[8]" +
- "October[10]" +
- "Oct[10]";
- }
- }
-